Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | /* |
||
23 | getAll: function (details) { |
||
24 | if (API.promise) { |
||
25 | return API.api.cookies.getAll(details); |
||
26 | } |
||
27 | else { |
||
28 | return new C_Promise(function () { |
||
29 | API.api.cookies.getAll(details, (function (cookie) { |
||
30 | this.call_then(cookie); |
||
31 | }).bind(this)); |
||
32 | }); |
||
33 | } |
||
34 | }, |
||
35 | set: function (details) { |
||
71 | }; |